home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gsfcmap.h < prev    next >
C/C++ Source or Header  |  1997-03-10  |  2KB  |  59 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsfcmap.h */
  20. /* CMap data definition */
  21. /* Requires gsstruct.h */
  22.  
  23. #ifndef gsfcmap_INCLUDED
  24. #  define gsfcmap_INCLUDED
  25.  
  26. #include "gsccode.h"
  27.  
  28. /* Define the abstract type for a CMap. */
  29. #ifndef gs_cmap_DEFINED
  30. #  define gs_cmap_DEFINED
  31. typedef struct gs_cmap_s gs_cmap;
  32. #endif
  33.  
  34. /* We only need the structure descriptor for testing. */
  35. extern_st(st_cmap);
  36.  
  37. /* Define the structure for CIDSystemInfo. */
  38. typedef struct gs_cid_system_info_s {
  39.   gs_const_string Registry;
  40.   gs_const_string Ordering;
  41.   int Supplement;
  42. } gs_cid_system_info;
  43. #define gs_cid_system_info_max_ptrs 2
  44. /* We only need the structure descriptor for embedding. */
  45. extern_st(st_cid_system_info);
  46.  
  47. /* ---------------- Procedural interface ---------------- */
  48.  
  49. /*
  50.  * Decode a character from a string using a CMap, updating the index.
  51.  * Return 0 for a CID or name, N > 0 for a character code where N is the
  52.  * number of bytes in the code, or an error.  For undefined characters,
  53.  * we return CID 0.
  54.  */
  55. int gs_cmap_decode_next(P5(const gs_cmap *pcmap, const gs_const_string *str,
  56.                uint *pindex, uint *pfidx, gs_glyph *pglyph));
  57.  
  58. #endif                /* gsfcmap_INCLUDED */
  59.